Planter Basic uses Vite, a build tool that consists of a feature rich dev server and build command that bundles your code with Rollup. Read more in the Vite Docs. The Vite config file for Planter Basic can be found at the project root in vite.config.js.
The default Vite config in Planter Basic sets the public directory to static/. Assets in this directory will be served at root path / during dev, and copied to the root of the dist directory as-is. That means you can reference assets within static/ with just /.
For example, you would reference the file static/planter.png in your markup like so: img src="/planter.png">.
We included linters to serve as a starting point for implementing your own rules. The default rules are based on our Ditto code style guide.
.eslintrc.jsBy default, ESLint can only be run manually via the lint:js script.
Read more about ESLint.
.stylelintrc.jsBy default, StyleLint can only be run manually via the lint:css script. Read more about Stylelint.