GithubHelp home page GithubHelp logo

Comments (3)

nathobson avatar nathobson commented on June 1, 2024 2

I've now managed to get this working. The issue is around Vite not supporting the dev server having a different URL, see: vitejs/vite#2196.

I've added base: './', near the top of the config just after publicDir to process the URLs during build (relative to the theme) and then I've modified the dev server config to include origin: devServerConfig.HMR_ENTRYPOINT, as follows:

  if (dev) {
    config.server = {
      host: '0.0.0.0',
      origin: devServerConfig.HMR_ENTRYPOINT,
      strictPort: true,
      fs: {
        strict: true,
        allow: ['node_modules', assets.base]
      }
    }

This adds the correct URLs during dev.

from sage.

ravorona avatar ravorona commented on June 1, 2024 1

Sorry for the late response and thank you for the tip @nathobson. I will check and give that a try as soon as possible

from sage.

nathobson avatar nathobson commented on June 1, 2024

OK, so after a small break and coming back to this, it appears that setting base: './' within vite.config.ts and referencing using aliases @/fonts/font-name.woff2 works for build but in dev it's missing the port in the URL. The CSS file is trying to reference site.test/fonts/font-name.woff2 rather than site.test:3000/fonts/font-name.woff2.

from sage.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.