1. webpack.config.js 만들기// webpack.config.js var Encore = require('@symfony/webpack-encore'); Encore // directory where all compiled assets will be stored .setOutputPath('web/build/') // what's the public path to this directory (relative to your project's document root dir) .setPublicPath('/build') // empty the outputPath dir before each build .cleanupOutputBeforeBuild() // will output as web/bu..