This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/webpack.config.js

13 lines
372 B
JavaScript
Raw Normal View History

2020-07-08 09:05:34 +01:00
let Encore = require("@symfony/webpack-encore");
Encore.disableSingleRuntimeChunk()
.setOutputPath("web/build/")
.setPublicPath("/build")
.addStyleEntry("app", "./assets/css/tailwind.pcss")
.enablePostCssLoader();
process.env.NODE_ENV =
process.env.NODE_ENV || Encore.isProduction() ? "production" : "development";
module.exports = Encore.getWebpackConfig();