How to output all the assets to a specific directory like `static`?
See original GitHub issueWhat problem does this feature solve?
how to change the output assets path?
I mean move dist/js to dist/static/js and dist/css to dist/static/css.
I tried use baseUrl or publicPath option in vue.config.js, but it doesn’t work.
What does the proposed API look like?
provide an option to configure the assetsSubDirectory
Issue Analytics
- State:
- Created 5 years ago
- Comments:8
Top Results From Across the Web
How to copy static files to build directory with Webpack?
I'm trying to move from Gulp to Webpack . In Gulp I have task which copies all files and folders from /static/ folder...
Read more >How to manage static files (e.g. images, JavaScript, CSS)
You can namespace static assets in STATICFILES_DIRS by specifying prefixes. Serving static files during development¶. If you use django.contrib.staticfiles ...
Read more >Static Asset Handling - Vite
Then you can place the asset in a special public directory under your project root. Assets in this directory will be served at...
Read more >Serving static files in Express
To serve static files such as images, CSS files, and JavaScript files, ... To use multiple static assets directories, call the express.static middleware ......
Read more >Static Assets — The Pyramid Web Framework v2.0
In order for files that live in the path directory to be served, a URL that requests one of them must begin with...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
As @rhymes said it has been fixed in Vue CLI 3.
You will need to insert
In your configuration to compile assets to the static/ folder.