You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Debug info OS: Windows 10 v1809. Node: v12.1.0 Browser: Chrome 74 Stable
Describe the bug
The command npm run build logs a ENOENT error from PostCSS requiring utils.css due to the file path starting with a double C:\C:\ (it should start with a single C:\). Styles from utils.css are not loaded in the built page and some components are left unstyled (such as the buttons).
To Reproduce
Steps to reproduce the behavior:
Clone the project on a Windows machine. I am using the Git Bash shell, however, so Linux tools are available.
npm install
npm run build
The following error is logged:
[Error: ENOENT: no such file or directory, open 'C:\C:\Users\<user>\code\proxx\src\services\preact-canvas\utils.css'] {
errno: -4058,
code: 'ENOENT',
syscall: 'open',
path: 'C:\\C:\\Users\\<user>\\code\\proxx\\src\\services\\preact-canvas\\utils.css'
}
This error occurs due to the double C:\C:\ at the beginning of the path. I can't seem to figure out why it does that, and I couldn't trace it to a rollup plugin, so I'm opening the issue here. Has the project been tested to build on Windows at all?
npm run serve
Open localhost:8080 in browser (in my case, Chrome 74) and observe the page. Styles from utils.css are not loaded.
Expected behavior
PostCSS builds sucessfully and styles from utils.css are loaded.
The text was updated successfully, but these errors were encountered:
Debug info
OS: Windows 10 v1809.
Node: v12.1.0
Browser: Chrome 74 Stable
Describe the bug
The command
npm run build
logs a ENOENT error from PostCSS requiringutils.css
due to the file path starting with a doubleC:\C:\
(it should start with a singleC:\
). Styles fromutils.css
are not loaded in the built page and some components are left unstyled (such as the buttons).To Reproduce
Steps to reproduce the behavior:
Clone the project on a Windows machine. I am using the Git Bash shell, however, so Linux tools are available.
npm install
npm run build
The following error is logged:
This error occurs due to the double
C:\C:\
at the beginning of the path. I can't seem to figure out why it does that, and I couldn't trace it to a rollup plugin, so I'm opening the issue here. Has the project been tested to build on Windows at all?npm run serve
Open
localhost:8080
in browser (in my case, Chrome 74) and observe the page. Styles fromutils.css
are not loaded.Expected behavior
PostCSS builds sucessfully and styles from
utils.css
are loaded.The text was updated successfully, but these errors were encountered: