“Archivo-cargador de soporte JSON File” Código de respuesta

Archivo-cargador de soporte JSON File

{
   type: 'javascript/auto',
   test: /\.json$/,
   use: [ 'file-loader' ],
   include: /\.\/config/  // for e.g, but better to only copy particular JSON files (not all)
}
Restu Wahyu Saputra

Archivo-cargador de soporte JSON File

            {
                type: 'javascript/auto',
                test: /\.json$/,
                use: ['file-loader'],
                include: /\/dir\/.*\.json$/,
                options: {
                    name: 'static/json/[name].[hash:8].[ext]',
                }
            },
Restu Wahyu Saputra

Respuestas similares a “Archivo-cargador de soporte JSON File”

Preguntas similares a “Archivo-cargador de soporte JSON File”

Más respuestas relacionadas con “Archivo-cargador de soporte JSON File” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código