Subscribe on changes!

fix: typo in README.md

avatar
May 10th 2020
avatar
May 10th 2020

It is not a typo, without it the code would be interpreted as:

const { build } = require('vite')(async () => { ... })

... which will not work as vite does not have a default export.

avatar
May 10th 2020

It is not a typo, without it the code would be interpreted as:

const { build } = require('vite')(async () => { ... })

... which will not work as vite does not have a default export.

Got it