mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
15 lines
404 B
/**
|
|
* Re2o VueJS configuration
|
|
*
|
|
* Each VueJS components in static/components are compiled into asynchronous
|
|
* chunks in static/bundles.
|
|
* Then you can use for exemple <re2o-hello-world></re2o-hello-world> to call
|
|
* the HelloWorld component.
|
|
*
|
|
* You can develop new components using `yarnpkg watch`.
|
|
*/
|
|
|
|
module.exports = {
|
|
// Output to Django statics
|
|
outputDir: './static/bundles/',
|
|
};
|