EGOIST
EGOIST
So it happens in vue-cli too (only for .vue component) https://github.com/vuejs/vue-cli/issues/3691 The workaround is to disable css source map: https://poi.js.org/config.html#css-sourcemap
@Onesimu Yeah that's what I'd like to implement as well.
webpack has been so much easier than before but you still need a lot of configurations for advanced usage. as for vue cli 3, if you are starting a Vue...
here's my draft, with this preset you can run: - poi watch to build your node app and run it with `nodemon` - poi build to just build your node...
Using a babel plugin https://babeljs.io/docs/en/babel-plugin-transform-remove-console
Add it to `babel.config.js`: ```js module.exports = { presets: ["poi/babel"], env: { production: { plugins: ["transform-remove-console"] } } } ```
There's probably something going on with the default babel preset, I still need to investigate this furthur.
It's possible to create a vue-cli preset/plugin that allows you to init new Poi projects using the `vue create` command. But that's all you can do, you still can't use...
@amio `?scale` could work for me 😆👌🏼 > Maybe add an arg to transform all text to uppercase? Yeah that's a good idea.
Maybe not necessary, you can manually call `.filter` on your result 🤔