2019-03-31 00:40:51 +00:00
|
|
|
module.exports = {
|
2019-05-02 22:04:06 +00:00
|
|
|
configureWebpack: {
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{test: /\.coffee$/, loader: "coffee-loader"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2019-03-31 00:40:51 +00:00
|
|
|
|
2019-05-02 22:04:06 +00:00
|
|
|
pluginOptions: {
|
|
|
|
express: {
|
|
|
|
shouldServeApp: true,
|
|
|
|
serverDir: './srv'
|
|
|
|
}
|
|
|
|
},
|
2019-03-31 00:40:51 +00:00
|
|
|
|
2019-05-02 22:04:06 +00:00
|
|
|
baseUrl: undefined,
|
|
|
|
outputDir: undefined,
|
|
|
|
assetsDir: undefined,
|
|
|
|
runtimeCompiler: undefined,
|
|
|
|
productionSourceMap: false,
|
|
|
|
parallel: undefined,
|
|
|
|
css: undefined,
|
|
|
|
|
|
|
|
pwa: {
|
|
|
|
workboxOptions: {
|
|
|
|
skipWaiting: true
|
|
|
|
}
|
|
|
|
}
|
2019-03-31 00:40:51 +00:00
|
|
|
};
|