1

I have a library installed via npm and one of the modules I have modified.

python.js

So, just because if I delete the node_modules folder and run npm install I would lose the changes I need to put this module elsewhere?

I currently import it like this:

import 'brace/mode/phython';

So if I move my modified version of phython.js into the assets folder...

How do I import it?

0

1 Answer 1

1

Try something like this to see if it work

import 'assets/brace/mode/phython';
Sign up to request clarification or add additional context in comments.

Comments