mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 01:37:55 +08:00
21 lines
485 B
JavaScript
21 lines
485 B
JavaScript
module.exports = {
|
|
publicPath: './',
|
|
productionSourceMap: false,
|
|
pages: {
|
|
index: {
|
|
entry: 'examples/main.js',
|
|
template: 'public/index.html',
|
|
filename: 'index.html'
|
|
}
|
|
},
|
|
css: {
|
|
loaderOptions: {
|
|
less: {
|
|
lessOptions: {
|
|
// important extra layer for less-loader^6.0.0
|
|
javascriptEnabled: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |