Skip to content

Respect Vite's root config field #10

Description

@ipekli

I'm having trouble getting vite-plugin-php to work with my Vite setup (version 5.1.4). Despite following the plugin's documentation and configuring my vite.config.js as shown below, it doesn't seem to function as expected. My project structure is straightforward with a single index.php file in the src directory, and I've directed the plugin to use a specific PHP binary.

Here's my vite.config.js:

import path from "path";
import { defineConfig } from "vite";
import usePHP from "vite-plugin-php";

export default defineConfig({
  plugins: [
    usePHP({
      binary: "/opt/homebrew/bin/php",
      entry: ["index.php"],
    }),
  ],
  root: path.resolve(__dirname, "src"),
});

And my project structure:

- src
  -- index.php

Could anyone point out what might be wrong with this configuration or suggest any steps to troubleshoot this issue?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions