11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
let Encore = require('@symfony/webpack-encore')
|
|
|
|
Encore
|
|
.disableSingleRuntimeChunk()
|
|
.setOutputPath('dist/')
|
|
.setPublicPath('/dist')
|
|
.addStyleEntry('app', './src/css/tailwind.pcss')
|
|
.enablePostCssLoader()
|
|
|
|
module.exports = Encore.getWebpackConfig()
|