| 12345678910111213 |
- module.exports = {
- publicPath: process.env.PUBLIC_PATH || "/",
- devServer: {
- port: 8081,
- disableHostCheck: true,
- },
- chainWebpack: (config) => {
- if (process.env.NODE_ENV === "development") {
- config.output.filename("[name].[hash].js").end();
- }
- },
- runtimeCompiler: true,
- };
|