DAB0mB / Appfairy

A CLI tool to Migrate a Webflow project into a React app
MIT License
286 stars 39 forks source link

Does appfairy work on Windows? #19

Open rkalghatgi opened 3 years ago

rkalghatgi commented 3 years ago

Does appfairy work on Windows?

EgorZakharov97 commented 3 years ago

For me, no. Try to install Linux subsystem for Windows (WSL) and develop there. Keep in mind that Linux and Windows have different filesystems, so do not try to save the project anywhere in your Windows filesystem, it will make the project extremely slow.

And the folder will open in VSCode (if you have this installed)

You may need to install the 'code' command separately (Google, I don't remember how)

HotelGuthrie commented 2 years ago

Make sure to change the file paths line #62, #63, and #64 from:

@import url(C:\css\normalize.css); @import url(C:\css\webflow.css); @import url(C:\css\autodopt.webflow.css);

to:

@import url(/css/normalize.css); @import url(/css/webflow.css); @import url(/css/autodopt.webflow.css);

If you don't do this, you'll get an error that says "Not allowed to load local resources"

darrell-gamble commented 1 year ago

Hi, HotelGuthrie, I am new to appfairy and fairly new to webflow. Is there a comprehensive article or tutorial on getting it to work in windows? Thanks for your participation.