We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
million
1.0.12
None
npm install @million/lint@latest
Windows
Chrome
I am confused after configuring millions into vite.config.js
vite.config.js
import MillionLint from "@million/lint" import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [MillionLint.vite(), react(),], })
I got this internal error when do npm run dev
npm run dev
When I open devtools I got this ERR_CONNECTION_REFUSED
ERR_CONNECTION_REFUSED
It supposed to be run like this image below
I managed to run it, after I reinstall using npm i million
npm i million
and configure vite.config.js using below configuration
import million from 'million/compiler' import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' // https://vitejs.dev/config/ export default defineConfig({ plugins: [million.vite({ auto: true }), react(),], })
The app can be run again using npm run dev
I have no idea why its didn't work when I following the instructions on the official docs.
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue! A maintainer will review it soon.
Sorry, something went wrong.
Running into the same issue on the same set up
I have this issue too
No branches or pull requests
What version of
million
are you using?1.0.12
Are you using an SSR adapter? If so, which one?
None
What package manager are you using?
npm install @million/lint@latest
What operating system are you using?
Windows
What browser are you using?
Chrome
Describe the Bug
I am confused after configuring millions into
vite.config.js
I got this internal error when do
npm run dev
When I open devtools I got this
ERR_CONNECTION_REFUSED
What's the expected result?
It supposed to be run like this image below
I managed to run it, after I reinstall using
npm i million
and configure
vite.config.js
using below configurationThe app can be run again using
npm run dev
I have no idea why its didn't work when I following the instructions on the official docs.
The text was updated successfully, but these errors were encountered: