简体   繁体   中英

How to put webpack output files in separate folders?

I looked through webpack documentation, but couldn't find answer to my question.

How can I put certain files for example in /dist/src/js and styles in /dist/src/styles?

Thank you in advance

You can set up file name with specify path

examples with js in output

    filename: 'static/js/[name].[fullhash].js',
    chunkFilename: 'static/js/chunk.[name].[fullhash].js',

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM