Sage 10 main-dev acron cache

Hi

I’ve just installed Sage theme from dev0main branch. After installation, I performed these commands:

“wp acorn acorn:install”
“npm install”
“npm run build”

After accessing the site, I received this error:

The D:\Herd\cnk/web/app/themes/foreto-kmo\D:\Herd\cnk/web/app/cache/acorn/framework\cache directory must be present and writable.

Exception
in D:\Herd\cnk\web\app\themes\foreto-kmo\vendor\roots\acorn\src\Illuminate\Foundation\PackageManifest.php (line 178)
     * @throws \Exception     */    protected function write(array $manifest)    {        if (! is_writable($dirname = dirname($this->manifestPath))) {            throw new Exception("The {$dirname} directory must be present and writable.");        }        $this->files->replace(            $this->manifestPath, '<?php return '.var_export($manifest, true).';'        );

why it generate wrong path, its creates cache folder and all but path generated by acorn is wrong, when i pass “” as base path it still adds ""

“” is generate

\D:\Herd\cnk/web/app/cache/acorn/framework\cache

after edit for test in PAths.php

    /**
     * Ensure that all of the storage directories exist.
     */
    protected function fallbackStoragePath(): string
    {
        $files = new Filesystem;
        // $path = Str::finish(WP_CONTENT_DIR, '/cache/acorn');

        $path = '/cache/acorn';

        foreach (
            [
                'framework/cache/data',
                'framework/views',
                'framework/sessions',
                'logs',
            ] as $directory
        ) {
            $files->ensureDirectoryExists("{$path}/{$directory}", 0755, true);
        }

        return $path;
    }

it start working but then i get namespace error so i needed to edit composer.json

  "autoload": {
    "psr-4": {
      "App\\": ["app/", "web/app/themes/foreto-kmo/app/"]
    }

-.-