Показать сообщение отдельно
  #3 (permalink)  
Старый 27.01.2022, 19:48
Кандидат Javascript-наук
Отправить личное сообщение для vah-smile Посмотреть профиль Найти все сообщения от vah-smile
 
Регистрация: 31.10.2009
Сообщений: 116

В общем, хочу сделать что-то типа этого, но почему-то оно собирает проект не по папкам theme_1 и theme_2, а ложит все в одну папку theme_2:
const theme_1_mix = require('laravel-mix');
theme_1_mix.setPublicPath('theme_1/dist');
theme_1_mix.setResourceRoot('/wp-content/themes/theme_1');
theme_1_mix.options({ processCssUrls: true });
theme_1_mix.setResourceRoot('/wp-content/themes/theme_1');

theme_1_mix
    .sass('theme_1/assets/scss/main.scss', 'css/main.css')
    .version();

const theme_2_mix = require('laravel-mix');
theme_2_mix.setPublicPath(israelcart);
theme_2_mix.setResourceRoot('/wp-content/themes/theme_2');
theme_2_mix.options({ processCssUrls: true });
theme_2_mix.setResourceRoot('/wp-content/themes/theme_2');

theme_2_mix
    .js('theme_2/inc/my-account/signin-signup.js', 'js/signin-signup.js')
    .version();
Ответить с цитированием